Uses of Interface
org.eclipse.vtp.framework.common.IDataType

Packages that use IDataType
org.eclipse.vtp.framework.common   
org.eclipse.vtp.framework.common.services   
org.eclipse.vtp.framework.common.support   
org.eclipse.vtp.framework.databases   
 

Uses of IDataType in org.eclipse.vtp.framework.common
 

Methods in org.eclipse.vtp.framework.common that return IDataType
 IDataType IDataTypeRegistry.getDataType(java.lang.String typeName)
          Returns a type definition for the type with the specified name or null if no type with that name exists.
 IDataType IDataType.getFieldType(java.lang.String fieldName)
          Returns the type of the specified field or null if no such field exists.
 IDataType IDataObject.getType()
          Returns the type of this data object.
 

Methods in org.eclipse.vtp.framework.common with parameters of type IDataType
 IDataObject IVariableRegistry.createVariable(IDataType type)
          Creates a new variable of the specified type.
 

Uses of IDataType in org.eclipse.vtp.framework.common.services
 

Methods in org.eclipse.vtp.framework.common.services that return IDataType
 IDataType DataTypeRegistry.getDataType(java.lang.String typeName)
           
 

Methods in org.eclipse.vtp.framework.common.services with parameters of type IDataType
 IDataObject VariableRegistry.createVariable(IDataType type)
           
 

Uses of IDataType in org.eclipse.vtp.framework.common.support
 

Classes in org.eclipse.vtp.framework.common.support that implement IDataType
 class CustomDataType
          CustomDataType.
 

Methods in org.eclipse.vtp.framework.common.support that return IDataType
 IDataType CustomDataType.getFieldType(java.lang.String fieldName)
           
 IDataType CustomDataField.getType()
          Returns the type.
 

Constructors in org.eclipse.vtp.framework.common.support with parameters of type IDataType
CustomDataField(java.lang.String name, IDataType type, java.lang.String initialValue)
          Creates a new CustomDataField.
 

Uses of IDataType in org.eclipse.vtp.framework.databases
 

Methods in org.eclipse.vtp.framework.databases that return IDataType
 IDataType IDatabase.getColumnType(java.lang.String tableName, java.lang.String columnName)